home *** CD-ROM | disk | FTP | other *** search
/ Aminet 35 / Aminet 35 (2000)(Schatztruhe)[!][Feb 2000].iso / Aminet / gfx / misc / gnuplot-src.lha / gnuplot-3.7.1src / gnuplot-3.7.1.lha / gnuplot-3.7.1 / docs / latextut / eg2.plt < prev    next >
Encoding:
Text File  |  1998-04-15  |  219 b   |  9 lines

  1. set terminal latex
  2. set output "eg2.tex"
  3. set size 5/5., 4/3.
  4. set format xy "$%g$"
  5. set title 'This is a plot of $y=sin(x)$'
  6. set xlabel 'This is the $x$ axis'
  7. set ylabel 'This is\\the\\$y$ axis'
  8. plot [0:6.28] [0:1] sin(x)
  9.